home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / multicobex / multi_cobex.h
C/C++ Source or Header  |  2006-05-08  |  1KB  |  49 lines

  1. /*
  2.  * multi_cobex.h
  3.  *
  4.  *   Copyright (c) 2002-2005 Christian W. Zuckschwerdt <zany@triq.net>
  5.  * 
  6.  *   This program is free software; you can redistribute it and/or modify it
  7.  *   under the terms of the GNU General Public License as published by the Free
  8.  *   Software Foundation; either version 2 of the License, or (at your option)
  9.  *   any later version.
  10.  *
  11.  *   This program is distributed in the hope that it will be useful, but
  12.  *   WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  13.  *   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14.  *   for more details.
  15.  *
  16.  *   You should have received a copy of the GNU General Public License
  17.  *   along with this program; if not, write to the Free Software
  18.  *   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19.  *     
  20.  */
  21.  
  22. #ifndef MULTICOBEX_H
  23. #define MULTICOBEX_H
  24.  
  25. #include <inttypes.h>
  26.  
  27. #ifdef __cplusplus
  28. extern "C" {
  29. #endif
  30.  
  31. /* session handling */
  32.  
  33. obex_ctrans_t *
  34.     cobex_ctrans (const char *tty);
  35. void    cobex_free (obex_ctrans_t * ctrans);
  36.  
  37. /* callbacks */
  38.  
  39. int    cobex_connect (obex_t *self, void *data);
  40. int    cobex_disconnect (obex_t *self, void *data);
  41. int    cobex_write (obex_t *self, void *data, uint8_t *buffer, int length);
  42. int    cobex_handleinput (obex_t *self, void *data, int timeout);
  43.  
  44. #ifdef __cplusplus
  45. }
  46. #endif
  47.  
  48. #endif /* MULTICOBEX_H */
  49.